home *** CD-ROM | disk | FTP | other *** search
- /*
- * Author : George Leonidas Coulouris
- * Description : unix man page filter
- * Last modified : 9 June 94
- */
-
- #include <stdio.h>
-
- const char
- mf_ver[] = "$VER: manfilt 1.2 (9.6.94)";
-
- int main()
- {
- char
- c;
-
- while ( (c = getchar() ) != EOF)
-
- switch (c)
- {
- case '\b':
- getchar();
- break;
-
- case '_':
- if ( ( c = getchar() ) != EOF )
- if ( c != '\b' )
- {
- putchar('_');
- putchar(c);
- }
- break;
-
- default:
- putchar(c);
- }
-
- return 0;
- }
-